home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 12
/
Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso
/
Aminet
/
util
/
cdity
/
BlocNotes38.lha
/
BlocNotes
/
ArchiveNote.rexx
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1996-04-12
|
259 b
|
16 lines
/* Hides notes and makes it not autoopen*/
address 'blocnotes.rexx'
options results
/*Get the id of the note*/
parse arg id .
ISANOTE id
if result then do /* Check if the id is valid*/
HIDE id
AUTOOPEN id OFF
FIXEDSCREEN id OFF
SAVE id
end